home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / cptuts22.arj / PERSON.CPP < prev    next >
C/C++ Source or Header  |  1992-01-20  |  322b  |  12 lines

  1.                                      // Chapter 11 - Program 2
  2. #include <iostream.h>
  3. #include "person.h"
  4.  
  5.             // This method should never be called.  If it is ever
  6.             // called, it is considered an error.
  7. void
  8. person::display(void)
  9. {
  10.    cout << "person::display - missing subclass method\n";
  11. }
  12.